Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 10 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&display=swap");

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  width: 800px;
}

#display-joke {
  font-size: 4rem;
  font-family: "Playfair Display", serif;
}

.btn {
  padding: 10px;
  margin-top: 40px;
  border: none;
  background: transparent;
  border-bottom: 1px solid crimson;
  color: crimson;
  cursor: pointer;
}